From 59a8ffd35e5e0effe6a640027a52715327ecd288 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Tue, 17 Apr 2018 18:27:22 +0100 Subject: [PATCH] CellEditable: Move arg description to right place Move it from the body to the argument line, and while there, update the deprecated (allow-none) to (nullable). --- gtk/gtkcelleditable.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gtk/gtkcelleditable.c b/gtk/gtkcelleditable.c index 4b2c01fdac..adf7418224 100644 --- a/gtk/gtkcelleditable.c +++ b/gtk/gtkcelleditable.c @@ -100,11 +100,10 @@ gtk_cell_editable_default_init (GtkCellEditableInterface *iface) /** * gtk_cell_editable_start_editing: * @cell_editable: A #GtkCellEditable - * @event: (allow-none): A #GdkEvent, or %NULL + * @event: (nullable): The #GdkEvent that began the editing process, or + * %NULL if editing was initiated programmatically * - * Begins editing on a @cell_editable. @event is the #GdkEvent that began - * the editing process. It may be %NULL, in the instance that editing was - * initiated through programatic means. + * Begins editing on a @cell_editable. **/ void gtk_cell_editable_start_editing (GtkCellEditable *cell_editable, -- 2.30.2